home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gekikoh Dennoh Club 1
/
Gekikoh Dennoh Club Vol. 1 (Japan).7z
/
Gekikoh Dennoh Club Vol. 1 (Japan) (Track 1).bin
/
kowin
/
archive
/
apl
/
gview120.lzh
/
gviewsrc.lzh
/
error.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-02-12
|
452b
|
30 lines
/*
Copyright 1995 Ogasawara Hiroyuki(COR.)
*/
#include <corlib.h>
#include <sys_doslib.h>
#include "gview.h"
void
GV_Err( msg )
char *msg;
{
ConsoleOpen();
ConsolePrint( "gview:" );
ConsolePrint( msg );
ConsolePrint( "\r\n" );
}
void
GV_Err2( msg, msg2 )
char *msg, *msg2;
{
ConsoleOpen();
ConsolePrint( "gview:\'" );
ConsolePrint( msg );
ConsolePrint( "\'" );
ConsolePrint( msg2 );
ConsolePrint( "\r\n" );
}